Change the position of value in enumeration type

Hello,

 

I would like to change the position of a value in a enumeration type with DXL. For example, I have a type with the values:

 

-Bad

-Normal

-Good

 

And I want to changed to:

-Normal

-Bad

-Good

 

Thank you!


Juanfergar - Thu Nov 07 08:23:07 EST 2019

Re: Change the position of value in enumeration type
PekkaMakinen - Thu Nov 07 09:09:38 EST 2019

You need to use modify function with a mapping array, read thread https://www.ibm.com/developerworks/community/forums/html/topic?id=77777777-0000-0000-0000-000014277834

Re: Change the position of value in enumeration type
Juanfergar - Fri Nov 08 01:37:29 EST 2019

PekkaMakinen - Thu Nov 07 09:09:38 EST 2019

You need to use modify function with a mapping array, read thread https://www.ibm.com/developerworks/community/forums/html/topic?id=77777777-0000-0000-0000-000014277834

Thanks!!!